const dialogTitle = {
    name: "dialog_title",
    component: NANO.DIALOG_TITLE,
    value: "This is title",
    props: {
        style: {
            color: "blackAndWhite"
        },
    },
    hide: false
};
const dialogContent = {
    name: "dialog_content",
    component: NANO.DIALOG_CONTENT,
    content: [],
    props: {
        style: {
            
        },
    },
    hide: false
};
const dialogAction = {
    name: "dialog_action",
    component: NANO.DIALOG_ACTION,
    content: [],
    props: {
        style: {
        },
    },
    hide: false
};
const dialog = {
  name: 'dialog',
  component: NANO.DIALOG,
  content: [dialogTitle, dialogContent, dialogAction],
  props: {
    style: {
    },
  }
};